From: Conrad Irwin Date: Mon, 21 Jun 2010 23:22:22 +0000 (+0000) Subject: (bug 11641) support \dots[cmio] in X-Git-Tag: 1.31.0-rc.0~36420 X-Git-Url: http://git.cyclocoop.org/%7D%7Cconcat%7B?a=commitdiff_plain;h=a37270da7b9dc3ae58bf4279c57701036fb195be;p=lhc%2Fweb%2Fwiklou.git (bug 11641) support \dots[cmio] in Thanks to Brian Foley for the patch. --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 758d7e35d4..b6b1046d17 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -88,6 +88,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN contributions * (bug 17857) {{anchorencode}} acts more like how the parser creates section ids. * (bug 21477) \& can now be used in +* (bug 11641) \dotsc \dotsm \dotsi \dotso can now be used in === Bug fixes in 1.17 === * (bug 17560) Half-broken deletion moved image files to deletion archive diff --git a/math/texutil.ml b/math/texutil.ml index f9f4f9a3b8..80adf600de 100644 --- a/math/texutil.ml +++ b/math/texutil.ml @@ -409,6 +409,10 @@ let find = function | "\\mod" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mod ", "mod"))) | "\\Diamond" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\Diamond ", "◊"))) | "\\dotsb" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsb ", "⋅⋅⋅"))) + | "\\dotsc" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsc ", "..."))) + | "\\dotsi" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsi ", "⋅⋅⋅"))) + | "\\dotsm" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsm ", "⋅⋅⋅"))) + | "\\dotso" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotso ", "..."))) | "\\reals" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mathbb{R}", "R"))) | "\\Reals" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mathbb{R}", "R"))) | "\\R" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mathbb{R}", "R")))